projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
531e70e
)
* configure.ac (HAVE_DATA_START): Fix test. (Bug#13818)
author
Ken Brown
<kbrown@cornell.edu>
Thu, 28 Feb 2013 03:19:51 +0000
(22:19 -0500)
committer
Ken Brown
<kbrown@cornell.edu>
Thu, 28 Feb 2013 03:19:51 +0000
(22:19 -0500)
ChangeLog
patch
|
blob
|
history
configure.ac
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index 5b289f27ef153cf4a76ffdad15bfe24f4dc1cbf7..7a2e7769ecaa0aeda019af0f312bdb29f84ab44e 100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,3
+1,7
@@
+2013-02-28 Ken Brown <kbrown@cornell.edu>
+
+ * configure.ac (HAVE_DATA_START): Fix test. (Bug#13818)
+
2013-02-25 Paul Eggert <eggert@cs.ucla.edu>
Simplify data_start configuration (Bug#13783).
diff --git
a/configure.ac
b/configure.ac
index 2d843a01a0af33255b60e75dc5ac2986eb020fba..cf930e7dee382fd669e9a3197d83aa053816349d 100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-1648,7
+1648,7
@@
else
[AC_LINK_IFELSE(
[AC_LANG_PROGRAM(
[[extern char data_start[]; char ch;]],
- [[return data_start
==
&ch;]])],
+ [[return data_start
<
&ch;]])],
[emacs_cv_data_start=yes],
[emacs_cv_data_start=no])])
if test $emacs_cv_data_start = yes; then